projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
052bd38
)
* lisp/subr.el (y-or-n-p): Capitalize "yes".
author
Juri Linkov
<juri@jurta.org>
Mon, 5 Sep 2011 08:05:01 +0000
(11:05 +0300)
committer
Juri Linkov
<juri@jurta.org>
Mon, 5 Sep 2011 08:05:01 +0000
(11:05 +0300)
lisp/ChangeLog
patch
|
blob
|
history
lisp/subr.el
patch
|
blob
|
history
diff --git
a/lisp/ChangeLog
b/lisp/ChangeLog
index 5e6a6d9108aa573200c88da3f82cc999c450c686..59ecd1a3c1289476b56fa294af2851568311a22d 100644
(file)
--- a/
lisp/ChangeLog
+++ b/
lisp/ChangeLog
@@
-1,3
+1,7
@@
+2011-09-05 Juri Linkov <juri@jurta.org>
+
+ * subr.el (y-or-n-p): Capitalize "yes".
+
2011-09-04 Michael Albinus <michael.albinus@gmx.de>
* net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
diff --git
a/lisp/subr.el
b/lisp/subr.el
index b49a20e7f6e0705eebe747533bc526cc465f410b..a2676b1173d7798d1659a9fddee593db61fba99b 100644
(file)
--- a/
lisp/subr.el
+++ b/
lisp/subr.el
@@
-2254,7
+2254,7
@@
is nil and `use-dialog-box' is non-nil."
(listp last-nonmenu-event)
use-dialog-box)
(setq answer
- (x-popup-dialog t `(,prompt ("
y
es" . act) ("No" . skip))))
+ (x-popup-dialog t `(,prompt ("
Y
es" . act) ("No" . skip))))
(setq prompt (concat prompt
(if (eq ?\s (aref prompt (1- (length prompt))))
"" " ")